home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / Main.dxr / 00002_Main navigation handlers.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  743 b   |  51 lines

  1. global gMasterData, gPrompter
  2.  
  3. on enterLeafMenu
  4.   go(label("Main"))
  5.   bkgrdMusic(gMasterData)
  6.   setPrompter()
  7. end
  8.  
  9. on exitLeafMenu
  10.   set the timeoutScript to EMPTY
  11. end
  12.  
  13. on nextMovie
  14.   stopSounds()
  15.   exitLeafMenu()
  16.   if gPrompter = 0 then
  17.     set gPrompter to 1
  18.   end if
  19.   cursor(4)
  20.   case the clickOn of
  21.     3:
  22.       go(1, "Menu1")
  23.     4:
  24.       go(1, "Menu2")
  25.     5:
  26.       go(1, "Menu3")
  27.     6:
  28.       go(1, "Menu4")
  29.   end case
  30. end
  31.  
  32. on setPrompter
  33.   if voidp(gPrompter) then
  34.     set gPrompter to 0
  35.   end if
  36.   case gPrompter of
  37.     0:
  38.       set the timeoutScript to "clickDummy1"
  39.     otherwise:
  40.       set the timeoutScript to "clickDummy2"
  41.   end case
  42. end
  43.  
  44. on clickDummy1
  45.   puppetSound("prompt1")
  46. end
  47.  
  48. on clickDummy2
  49.   puppetSound("prompt2")
  50. end
  51.